DECLARE @Id Int                               
Select @Id = Id From sysobjects Where Name = 'Over_Under'
IF not Exists(SELECT * FROM syscolumns WHERE id = @Id and Name = 'IsFdoDiscount')
  Alter Table dbo.Over_Under Add IsFdoDiscount BIT Default(0) NOT NULL
